home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / err87_13.zip / TEST.PAS < prev   
Pascal/Delphi Source File  |  1993-01-24  |  138b  |  12 lines

  1. {$N+}
  2. { Simple demo program to show a 0/0 error. }
  3.  
  4. uses error87;
  5. var
  6.   x,y: double;
  7. begin
  8.   x := 0;
  9.   y := 0;
  10.   x:=x/y;
  11. end.
  12.